home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / C / Tinygl.lha / TinyGL / include / GL / glu.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-08-03  |  378 b   |  25 lines

  1. #ifndef GLU_H
  2. #define GLU_H
  3.  
  4.  
  5. #include <GL/gl.h>
  6.  
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12.  
  13. void gluLookAt(GLdouble eyex, GLdouble eyey, GLdouble eyez,
  14.                     GLdouble centerx, GLdouble centery, GLdouble centerz,
  15.                     GLdouble upx, GLdouble upy, GLdouble upz);
  16. void gluPerspective(GLfloat fovy, GLfloat aspect, GLfloat znear, GLfloat zfar);
  17.  
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23.  
  24. #endif
  25.